home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / propdlg / propsht.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1005 b   |  37 lines

  1. // propsht.h : interface of the CModalShapePropSheet class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CModalShapePropSheet : public CPropertySheet
  14. {
  15. public:
  16.     DECLARE_DYNAMIC(CModalShapePropSheet)
  17.     CModalShapePropSheet(CWnd* pWndParent = NULL);
  18.  
  19. // Attributes
  20.     CStylePage m_stylePage;
  21.     CColorPage m_colorPage;
  22.  
  23. // Operations
  24.     void SetSheetPropsFromShape(CShape* pShape);
  25.     void SetShapePropsFromSheet(CShape* pShape);
  26.  
  27. // Overrides
  28.     virtual BOOL OnInitDialog();
  29.  
  30. // Message Handlers
  31. protected:
  32.     //{{AFX_MSG(CModalShapePropSheet)
  33.     afx_msg void OnApplyNow();
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.